AUTOMATIC1111版Stable Diffusion web UIの日々の使い方
前提
Windowsで使いたい時にやること
open terminal
wsl
$ cd stable-diffusion-web-ui-docker
windows
$ cd .\dev\stable-diffusion-webui-docker\
更新する
$ git pull
$ docker compose --profile auto up --build
--build コンテナを開始前にイメージを構築する
リポジトリのdockerfileが更新されていたら--buildをつけないと反映されない(ビルドしたイメージを利用するため)
結構な頻度で更新されるので、使うたびに実行する
windowsでpermissionが644になる
$ git config --list | grep core.filemode
$ git config core.filemode false